home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / help_jr / min < prev    next >
Text File  |  1994-05-05  |  623b  |  23 lines

  1. min:
  2.  
  3. Synopsis: Compute the minimum value(s) in a matrix or two matrices.
  4.  
  5. Syntax:    min ( A )
  6.     min ( A , B )
  7.  
  8. Description:
  9.  
  10.     Min returns the minimum value(s) contained in the matrix A. If
  11.     the argument is a vector, then the smallest value is returned.
  12.     If A is a MxN matrix, then a row-vector of N columns is
  13.     returned containing the minimum value from each column of A.
  14.  
  15.     If min is used with two arguments, then min returns a matrix
  16.     the same size as A and B filled with the smallest elements
  17.     from A and B.
  18.  
  19.     When matrix elements are complex the absolute value is used
  20.     for comparison purposes.
  21.  
  22. See Also: mini, max, maxi
  23.